home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-16 | 1.3 KB | 45 lines | [TEXT/CWIE] |
- // Copyright © 1995-96 Apple Computer, Inc. All rights reserved.
- // Release Version: $ ODF 1 $
-
- #ifndef FRAME_H
- #define FRAME_H
-
- //=======================================================================
- // ----- Framework Includes -----
- #ifndef FWFRAME_H
- #include <FWFrame.h> // FW_CFrame
- #endif
-
- //=======================================================================
- class CSample4Part;
- class DevUniv_STalker;
- class FW_CPictureShape;
-
- //=======================================================================
- class CSample4Frame : public FW_CFrame {
- public:
- FW_DECLARE_AUTO(CSample4Frame)
- CSample4Frame(Environment* ev,
- ODFrame* odFrame,
- FW_CPresentation* presentation,
- CSample4Part* sample3Part);
- virtual ~CSample4Frame();
- protected:
- // overrides
- virtual void Draw(Environment *ev,
- ODFacet* odFacet,
- ODShape* invalidShape);
- virtual FW_Boolean DoMouseDown(Environment* ev,
- const FW_CMouseEvent& theMouseEvent);
- virtual void FrameShapeChanged(Environment* ev);
- // new members
- virtual void MyInitPicture(Environment* ev);
- private:
- DevUniv_STalker* fSOMTalker; // SOM object for speech synthesis
- FW_CRect fFrameRect;
- FW_CPictureShape* fPictShape; // Mr. Pizza
- };
-
- //=======================================================================
- #endif
-